@extends('frontend.v1.layouts.app') @section('content')
{{-- Page Header --}}

Recently Viewed Properties

Properties you've recently explored

@if($properties->count() > 0)
{{ $properties->count() }} {{ $properties->count() === 1 ? 'property' : 'properties' }}
@endif
{{-- Properties Grid --}} @if($properties && $properties->count() > 0)
@foreach($properties as $property)
{{-- Property Image --}}
@if($property->project && $property->project->images && $property->project->images->first()) Property @else
@endif {{-- Property Type Badge --}} @if($property->type)
{{ $property->type->name }}
@endif
{{-- Property Details --}}
{{-- Location --}} @if($property->project && $property->project->city)
{{ $property->project->city->name ?? 'Location' }}
@endif {{-- Price --}} @if($property->lower_price)
${{ number_format($property->lower_price) }}
@endif {{-- Property Features --}}
@if($property->bedrooms)
{{ $property->bedrooms }}
@endif @if($property->bathrooms)
{{ $property->bathrooms }}
@endif @if($property->property_min_area)
{{ $property->property_min_area }}m²
@endif
{{-- View Property Button --}} View Details
@endforeach
@else {{-- Empty State --}}

No Recently Viewed Properties

Start exploring properties and they'll appear here

Browse Properties
@endif
@endsection Target class [App\Http\Middleware\TrackRecentlyViewed] does not exist.